home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / cprog.EXE / CC_1.ZIP / ISPRINT.C < prev    next >
Text File  |  1988-02-01  |  384b  |  8 lines

  1. /*
  2. ** isprint -- true if argument is valid ASCII graphic
  3. */
  4. isprint(c) char c; {
  5.   if(c >= ' ' && c <= 126) return 1;
  6.   else return 0;
  7.   }
  8.